Add thousand and hundred problem categories across operations#35
Merged
Add thousand and hundred problem categories across operations#35
Conversation
New categories added: - Grade 3: Addition/Subtraction of Hundreds (stotice) - Grade 4: Addition/Subtraction up to 1000 (with/without carry/borrow), Comparison up to 1000 - Grade 5 (new): Multiplication/Division up to 100 (2-digit × 1-digit) Year groups reorganized so Grade 4 now includes 1000-range arithmetic alongside existing multiplication/division up to 20, and Grade 5 is introduced for larger multiplication and division problems. Carry/borrow detection generalized to work with step-based generation for 3-digit number categories. https://claude.ai/code/session_01CGiFofzMUvj7issSHSwndn
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
This PR expands the math problem curriculum by adding new problem categories for thousands and hundreds across addition, subtraction, multiplication, division, and comparison operations. It also introduces a new grade level (5th grade) to the Slovenian curriculum grouping.
Key Changes
Addition: Added 4 new categories
Addition_ThousandWithoutCarry: 3-digit numbers (100-990) without carryingAddition_ThousandWithCarry: 3-digit numbers with forced carryingAddition_Thousand: 3-digit numbers with optional carryingAddition_Hundreds: 3-digit numbers in 100-step incrementsSubtraction: Added 4 new categories with analogous structure
Subtraction_ThousandWithoutBorrow: 3-digit numbers without borrowingSubtraction_ThousandWithBorrow: 3-digit numbers with forced borrowingSubtraction_Thousand: 3-digit numbers with optional borrowingSubtraction_Hundreds: 3-digit numbers in 100-step incrementsMultiplication & Division: Added hundred-level categories
Multiplication_HundredandMultiplication_Hundred_MissingDivision_HundredandDivision_Hundred_MissingComparison: Added
Comparison_Thousandcategory with 100-1000 range in 10-step incrementsCurriculum Organization:
Implementation Details
Math.floor(i / step) % 10instead of simple modulo operationshttps://claude.ai/code/session_01CGiFofzMUvj7issSHSwndn